Bookingpad Mysql Database Instructions --------------------------- 1. Logon to mysql 2. Create the bookingpad database (mysql> create database bookingpad;) 3. Create a user for the bookingpad database (mysql> grant all on bookingpad.* TO bookingpad@localhost identified by 'bookingpad';) 4. Exit out of mysql 5. Extract the Bookingpad_bin.zip and locate the file db/mysql/bookingpad_mysql.sql 6. Run the bookingpad_mysql.sql file into mysql (at command line: mysql -u bookingpad -pbookingpad bookingpad < bookingpad_mysql.sql) 7. Copy the file db/mysql/hibernate.cfg.xml into the ROOT/WEB-INF/classes directory 8. Edit the copied hibernate.cfg.xml file to setup the correct database, username and password.